projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d74d9a8
)
(sregex--char-aux): Use `mapc' rather than `mapcar'.
author
Juanma Barranquero
<lekktu@gmail.com>
Wed, 26 Sep 2007 00:15:54 +0000
(
00:15
+0000)
committer
Juanma Barranquero
<lekktu@gmail.com>
Wed, 26 Sep 2007 00:15:54 +0000
(
00:15
+0000)
lisp/emacs-lisp/sregex.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/sregex.el
b/lisp/emacs-lisp/sregex.el
index 901156cefc3336109d64c98f65f0fc644ab439c4..d4deb0f910192b5552329e408489c7b497cbceed 100644
(file)
--- a/
lisp/emacs-lisp/sregex.el
+++ b/
lisp/emacs-lisp/sregex.el
@@
-565,7
+565,7
@@
has one of the following forms:
(let ((chars (make-bool-vector 256 nil))) ; Yeah, right!
(dolist (arg args)
(cond ((integerp arg) (aset chars arg t))
- ((stringp arg) (mapc
ar
(lambda (c) (aset chars c t)) arg))
+ ((stringp arg) (mapc (lambda (c) (aset chars c t)) arg))
((consp arg)
(let ((start (car arg))
(end (cdr arg)))